From: Kenichi Handa Date: Tue, 7 Jul 2009 06:26:36 +0000 (+0000) Subject: (unibyte_has_multibyte_table): Delete extern. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~11636 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=d70d11221b5816490271fe7ee64d757c2d5cf224;p=emacs.git (unibyte_has_multibyte_table): Delete extern. (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it. --- diff --git a/src/character.h b/src/character.h index 075d36bf517..6f4bcdc6b02 100644 --- a/src/character.h +++ b/src/character.h @@ -87,12 +87,6 @@ extern int unibyte_to_multibyte_table[256]; #define unibyte_char_to_multibyte(c) \ ((c) < 256 ? unibyte_to_multibyte_table[(c)] : (c)) -/* Nth element is 1 iff unibyte char N can be mapped to a multibyte - char. */ -extern char unibyte_has_multibyte_table[256]; - -#define UNIBYTE_CHAR_HAS_MULTIBYTE_P(c) (unibyte_has_multibyte_table[(c)]) - /* If C is not ASCII, make it unibyte. */ #define MAKE_CHAR_UNIBYTE(c) \ do { \